home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000078_fdc@watsun.cc.columbia.edu_Fri Oct 26 14:21:24 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  65 lines

  1. Article: 12892 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.sys.hp.hpux,comp.protocols.kermit.misc
  5. Subject: Re: transfering files securely (encryption ?)
  6. Date: 26 Oct 2001 18:09:52 GMT
  7. Organization: Columbia University
  8. Lines: 48
  9. Message-ID: <9rc8tg$anu$1@newsmaster.cc.columbia.edu>
  10. References: <cad82396.0110260651.423f0fd1@posting.google.com> <slrn9tiug6.i0g.Ralf.Hildebrandt@postamt1.charite.de>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1004119792 11006 128.59.39.2 (26 Oct 2001 18:09:52 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 26 Oct 2001 18:09:52 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.sys.hp.hpux:142464 comp.protocols.kermit.misc:12892
  16.  
  17. In article <slrn9tiug6.i0g.Ralf.Hildebrandt@postamt1.charite.de>,
  18. Ralf Hildebrandt <Ralf.Hildebrandt@charite.de> wrote:
  19. : On 26 Oct 2001 07:51:12 -0700,
  20. : Marvin Blackburn <mblackburn@glenraven.com> wrote:
  21. : >We need a package that will allow us to transfer files to/from and hpux
  22. : >11.0 system.  It should be encrypted.  Any suggestions?
  23. : Use OpenSSH. It's been standard for years now on systems like *BSD and
  24. : Linux. It's free. 
  25. : With OpenSSH (which provides the commands ssh, scp, sftp and others) you can
  26. : e.g. scp files between boxes compressed and encrypted.
  27. This might be OK for Unix-Unix transfers, but it's not great for transfers
  28. of text files between Unix and non-Unix (e.g. Windows, VMS), and of course
  29. it's not available for a lot of platforms where standard file-transfer and
  30. security are available.
  31.  
  32. Other options include FTP secured by Kerberos IV, Kerberos V, SSL/TLS, or
  33. other IETF-standard security method.  I understand HP-UX 11 includes
  34. K5 and SSL/TLS support.  Whether that includes the FTP server and client
  35. I don't know (does anybody?).  Other FTP servers that include IETF-approved
  36. authentication and encryption methods are listed here:
  37.  
  38.   http://www.columbia.edu/kermit/ftpd.html
  39.  
  40. And your old friend C-Kermit (in its new 8.0 release) is a secure (and
  41. scriptable) FTP client to these servers.  Unlike scp, it handles platform
  42. differences and doesn't assume everything is Unix.  Not only can it convert
  43. between Unix and other text-file formats, it also can convert text character
  44. sets, e.g. HP-Roman8 / ISO Latin-1 / Unicode UTF-8:
  45.  
  46.   http://www.columbia.edu/kermit/ftpclient.html
  47.  
  48. And then there's Kermit protocol, which is in many ways more powerful and
  49. flexible that FTP protocol, and these days also about as fast.  Kermit
  50. clients AND servers can be built with Kerberos IV, Kerberos V, SSL/TLS,
  51. and/or SRP security:
  52.  
  53.   http://www.columbia.edu/kermit/ckermit.html
  54.  
  55. C-Kermit can be a secure client of RFC2839/2840 Internet Kermit Service:
  56.  
  57.   http://www.columbia.edu/kermit/cuiksd.html
  58.  
  59. or of any of the secure Telnet servers listed in the first reference above.
  60.  
  61. - Frank
  62.